home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Testing & Debugging / General tools / Report Error 2.0 / TEUtilities.h < prev   
Encoding:
C/C++ Source or Header  |  1992-08-17  |  1.0 KB  |  31 lines  |  [TEXT/KAHL]

  1. #ifndef __TEUTILITIES__
  2. #define __TEUTILITIES__
  3.  
  4. #ifndef __TEXTEDIT__
  5. #include "TextEdit.h"
  6. #endif
  7.  
  8. #ifndef __CONTROLS__
  9. #include "Controls.h"
  10. #endif
  11.  
  12. /*
  13. // Prototypes from 'TEUtilities.c'
  14. */
  15. void                TEGetSelect( short* selStart, short* selEnd, TEHandle te );
  16. void                TEGetChars( char* buf, short from, short to, TEHandle te );
  17. void                GetTEView( TEHandle te, Rect* viewRect );
  18. short                TELines( TEHandle te );
  19. short                TEHeight( TEHandle te );
  20. short                GetTEVScroll( TEHandle te );
  21. short                ViewHeight( TEHandle te );
  22. short                VScrollLocation( TEHandle te );
  23. void                PinnedTEVScroll( TEHandle te, ControlHandle scrollbar, short dv );
  24. void                ScrollTELine( TEHandle te, ControlHandle scrollbar, short dir );
  25. void                ScrollTEPage( TEHandle te, ControlHandle scrollbar, short dir );
  26. void                TEVThumbScroll( TEHandle te, ControlHandle scrollbar );
  27. pascal                TrackUpDownArrows( ControlHandle theControl, short partCode);
  28. void                ScrollBarClick( ControlHandle scrollbar, Point where );
  29. void                FixScrollBar( ControlHandle scrollbar );
  30.  
  31. #endif